Tag Archives: PHP Script

Cleaning Variables in PHP

Jul 04, 2014

It’s always important to clean/sanitize variables that are submitted via web forms to prevent against all kinds of different malicious threat. Here is a complete..

Read more

How much memory do PHP variables use?

Apr 12, 2014

There are cases when it might be quite important to know how much memory uses each variable in PHP script. The function memory_get_usage returns the..

Read more

Full-text search in MySQL

Mar 18, 2014

Normally, most of us use “SELECT * FROM table WHERE field1 LIKE ‘%$keyword%’” OR field2 LIKE ‘%$keyword%‘ ..etc” to search our table and get results…

Read more

4 Most Important Directory Functions in PHP

Mar 07, 2014

When writing PHP scripts that need to deal with the file-system to change the current directory, creating new directories, change the root directory, gets the..

Read more

Boost your web store with an open

Feb 24, 2014

Flexible, secure and scalable checkout software for any size of business More and more companies have turned to the web to transact business. And, of..

Read more

PHP Object cloning using clone keyword and

Feb 17, 2014

Object cloning or clone of an object means to create a duplicate of an object. With regular variables $var1 = $var2 means that a new..

Read more